home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / CUGUK / COMMS / C101.ZIP / UUPC11XT.ZIP / RN / RN.H < prev    next >
C/C++ Source or Header  |  1992-11-21  |  926b  |  37 lines

  1. /* $Header: E:\SRC\UUPC\RN\RCS/RN.H 1.1 1992/11/21 06:14:58 ahd Exp $
  2.  *
  3.  * $Log: RN.H $
  4.  * Revision 1.1  1992/11/21  06:14:58  ahd
  5.  * Initial
  6.  *
  7.  *
  8.  *    Rev 1.0   18 Nov 1990  0:22:46
  9.  * Initial revision.
  10.  * Revision 4.3  85/05/01  11:48:19  lwall
  11.  * Baseline for release with 4.3bsd.
  12.  *
  13.  */
  14.  
  15. EXT char ngdir[FILENAME_MAX];
  16. EXT char ngname[FILENAME_MAX];
  17.  
  18. EXT NG_NUM ng INIT(0);     /* current newsgroup index into rcline and toread */
  19. EXT NG_NUM current_ng INIT(0);   /* stable current newsgroup so we can ditz with ng */
  20. EXT NG_NUM starthere INIT(0);   /* set to the first newsgroup with unread news on startup */
  21.  
  22. #ifdef msdos
  23. #define spool E_newsdir
  24. extern char *E_newsdir;
  25. #else
  26. EXT char *spool INIT(Nullch);    /* public news spool directory */
  27. #endif
  28.  
  29. void  rn_init();
  30. void  main();
  31. void  set_ngname();
  32. char  *getngdir();
  33.  
  34. #include <stdlib.h>
  35. #include <stdio.h>
  36. #include <string.h>
  37.